home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / amiexpress / source / ae / code / ax3.00 / help.c < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-03  |  277 b   |  16 lines

  1. #include "bbs.h"
  2.  
  3. int HELP(void)
  4. {
  5. int stat;
  6.  
  7. gnsflag=CheckForNS(MAINMENU_Li);
  8. sprintf(GSTR1,"%sBBSHelp",Cmds->BBSLoc);
  9. if(!(stat=ChecktoDisplay(GSTR1,GSTR3,0,1)))
  10.     {
  11.     AEPutStr("\r\n\r\nSorry Help is unavailable at this time.\r\n\r\n");
  12.     return(FAILURE);
  13.     }
  14. return(SUCCESS);
  15. }
  16.